home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 13 / QRZ Ham Radio Callsign Database - Volume 13.iso / unix / src / new.h < prev    next >
C/C++ Source or Header  |  1996-06-23  |  823b  |  50 lines

  1.  
  2.  
  3.  
  4. #include <stdio.h>
  5. #include <sys/types.h>
  6. #include <time.h>
  7. #include <string.h>
  8.  
  9. /*
  10. N1BXA,NOLAN,ARTHUR,J,JR,53149,10565 E DESERT COVE AVE,
  11. SCOTTSDALE,AZ, 85259,G,WA1FTK
  12. */
  13.  
  14. #define    CALL         0
  15. #define LNAME         1
  16. #define FNAME         2
  17. #define MI         3
  18. #define JR         4
  19. #define DOB         5
  20. #define STREET        6
  21. #define CITY         7
  22. #define STATE         8
  23. #define ZIP         9
  24. #define CLASS         10
  25. #define P_CALL         11
  26. #define FLEN        12
  27.  
  28. /*
  29. Example 1 - Full Format
  30.  
  31. N1BXA   ARTHUR J. NOLAN JR               Class: G  4/14/87
  32. 10565 E DESERT COVE AVE                  Born:     5/29/53
  33. SCOTTSDALE, AZ 85259                     Prev:     WA1FTK
  34.  
  35.  
  36. Example 2 - Mailing Label Format
  37.  
  38. NOLAN J ARTHUR JR, N1BXA    
  39. 10565 E DESERT COVE AVE
  40. SCOTTSDALE, AZ 85259
  41.  
  42.  
  43. Example 3 - Callbook Format
  44.  
  45. N1BXA    NOLAN J ARTHUR JR, 10565 E DESERT COVE AVE, SCOTTSDALE, AZ 85259
  46.  
  47. */
  48.  
  49.  
  50.